home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 8 / The Arsenal Files Collection #8 (Arsenal Computer) (1996).ISO / g_quake / server1.zip / _MODULES.QC < prev    next >
Text File  |  1996-09-07  |  2KB  |  70 lines

  1. /*
  2. **
  3. ** _modules.qc (Modules Code, 1.1)
  4. **
  5. ** Copyright (C) 1996 Johannes Plass
  6. ** 
  7. ** This program is free software; you can redistribute it and/or modify
  8. ** it under the terms of the GNU General Public License as published by
  9. ** the Free Software Foundation; either version 2 of the License, or
  10. ** (at your option) any later version.
  11. ** 
  12. ** This program is distributed in the hope that it will be useful,
  13. ** but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. ** GNU General Public License for more details.
  16. **
  17. ** You should have received a copy of the GNU General Public License
  18. ** along with this program; if not, write to the Free Software
  19. ** Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20. ** 
  21. ** Author:   Johannes Plass (plass@dipmza.physik.uni-mainz.de)
  22. **
  23. */
  24.  
  25. void(entity player) ModulesInitModules =
  26. {
  27.    ExitRulesInit(player);     //#jp#(ExitRules)
  28.    MessagesInit(player);      //#jp#(Messages)
  29.    LevelSelectInit(player);   //#jp#(LevelSelect)
  30.    KickSuiciderInit(player);  //#jp#(KickSuicider)
  31.    LightningInit(player);     //#jp#(Lightning)
  32.    RankInit(player);          //#jp#(Rank)
  33.    ObserverInit(player);      //#jp#(Observer)
  34.    MotdInit(player);          //#jp#(Motd)
  35.    SkinInit(player);          //#jp#(Skin)
  36.    ServerConsoleInit(player); //#jp#(ServerConsole)
  37.    ServerHelpInit(player);    //#jp#(ServerHelp)
  38.    InitInit(player);          //#jp#(Init)
  39.    TelefragInit(player);      //#jp#(Telefrag)
  40.    VoteInit(player);          //#jp#(Vote)
  41. };
  42.  
  43. void(entity player) ModulesShowInfo =
  44. {
  45.    //             123456789#123456789#123456789#12345678
  46.    sprint(player,"### Server Modules (version 1.9.6)\n\n");
  47.  
  48.    // MessagesInfo(player);    //#jp#(Messages)
  49.    // ServerConsoleInfo(player);//#jp#(ServerConsole)
  50.    // LevelSelectInfo(player);    //#jp#(LevelSelect)
  51.    // InitInfo(player);        //#jp#(Init)
  52.    TelefragInfo(player);    //#jp#(Telefrag)
  53.    ServerHelpInfo(player);    //#jp#(ServerHelp)
  54.    RankInfo(player);        //#jp#(Rank)
  55.    KickSuiciderInfo(player);    //#jp#(KickSuicider)
  56.    SkinInfo(player);        //#jp#(Skin)
  57.    ObserverInfo(player);    //#jp#(Observer)
  58.    ExitRulesInfo(player);    //#jp#(ExitRules)
  59.    VoteInfo(player);        //#jp#(Vote)
  60.    LightningInfo(player);    //#jp#(Lightning)
  61. };
  62.  
  63. void(entity player) ModulesShowLevelInfo =
  64. {
  65.    ExitRulesLevelInfo(player);    //#jp#(ExitRules)
  66. };
  67.  
  68.  
  69.  
  70.